crypto/cipher.gcmFieldElement.low (field)

17 uses

	crypto/cipher (current package)
		gcm.go#L65: 	low, high uint64
		gcm.go#L256: 	return gcmFieldElement{x.low ^ y.low, x.high ^ y.high}
		gcm.go#L265: 	double.high |= x.low << 63
		gcm.go#L266: 	double.low = x.low >> 1
		gcm.go#L276: 		double.low ^= 0xe100000000000000
		gcm.go#L294: 			word = y.low
		gcm.go#L302: 			z.high |= z.low << 60
		gcm.go#L303: 			z.low >>= 4
		gcm.go#L304: 			z.low ^= uint64(gcmReductionTable[msw]) << 48
		gcm.go#L311: 			z.low ^= t.low
		gcm.go#L324: 		y.low ^= byteorder.BeUint64(blocks)
		gcm.go#L404: 		byteorder.BePutUint64(counter[:8], y.low)
		gcm.go#L416: 	y.low ^= uint64(len(additionalData)) * 8
		gcm.go#L421: 	byteorder.BePutUint64(out, y.low)